feat(app): enable follow-up queue mode with per-message override#35369
Open
IlayBacil1999 wants to merge 10 commits into
Open
feat(app): enable follow-up queue mode with per-message override#35369IlayBacil1999 wants to merge 10 commits into
IlayBacil1999 wants to merge 10 commits into
Conversation
Add a /queue <message> command that lets users queue messages while
the agent is working. Queued messages are processed one at a time
after the current turn finishes, preserving the same session context.
- Add delivery field ('steer' | 'queue') to RunPrompt and PromptInput
- Wire delivery through stream transport to the server prompt handler
- Skip AI loop when delivery='queue' (defer until next non-queued prompt)
- Add /queue slash command with autocomplete in footer
- Show queue count in footer status bar
- Add isQueueCommand/parseQueueCommand helpers in prompt.shared
…ueing" This reverts commit ab6c4c8.
Contributor
|
The following comment was made by an LLM, it may be inaccurate: Related PR FoundPR #33247: feat: Add queued message editing, wrap & steer, and halt & steer This PR is related to PR #35369 because it addresses queued message editing and steer/wrap functionality, which overlaps with the per-message queue/steer toggle and queue position preservation features in the current PR. Both involve queue management and message mode toggling in the app. |
Contributor
|
Thanks for updating your PR! It now meets our contributing guidelines. 👍 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue for this PR
N/A
Type of change
What does this PR do?
Two things:
Enables the queue setting that was already there but neutered. The
settings.tsxstore had guards that forced "queue" back to "steer". Removed those, added the dropdown to Settings V2.Adds a per-message steer/queue toggle in the composer. When the model is busy, a small clickable text (→ Steer / 📥 Queue) appears in the toolbar. Overrides the default for that one message, then resets. Also improved the queue dock: collapsed by default, remove button, undo toast, progress bar + count during drain, 2s countdown before auto-send.
New in this update:
How did you verify your code works?
bun run buildfrompackages/apppassesScreenshots / recordings
Checklist